home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Magazine 1995 March / CD ROM Magazine Disc 6 (Dennis) (March 1995).iso / pc / workshop / elastic / install / makedsks.bat next >
DOS Batch File  |  1994-12-01  |  1KB  |  49 lines

  1. @echo off
  2. echo This batch file copies the contents of the Elastic Reality install disks
  3. echo onto five high density 3 1/2" disks.  Before running this batch file you
  4. echo should format five disks.
  5. echo Note: It is normally not necessary to copy the install onto floppy disks, as
  6. echo the install can be run directly from the CD ROM drive.
  7. if (%1) == (A:) goto OK
  8. if (%1) == (B:) goto OK
  9. if (%1) == (a:) goto OK
  10. if (%1) == (b:) goto OK
  11.  
  12. echo .
  13. echo Error: Type 'makedsks A:' or 'makedsks B:'
  14.  
  15. goto Done
  16.  
  17. :OK
  18. echo .
  19. echo Insert disk 1 and press any key to continue, or press Ctrl-C to stop.
  20. echo .
  21. pause
  22. xcopy disk1\*.* %1\
  23.  
  24. echo .
  25. echo Insert disk 2 and press any key to continue, or press Ctrl-C to stop.
  26. echo .
  27. pause
  28. xcopy disk2\*.* %1\
  29.  
  30. echo .
  31. echo Insert disk 3 and press any key to continue, or press Ctrl-C to stop.
  32. echo .
  33. pause
  34. xcopy disk3\*.* %1\
  35.  
  36. echo .
  37. echo Insert disk 4 and press any key to continue, or press Ctrl-C to stop.
  38. echo .
  39. pause
  40. xcopy disk4\*.* %1\
  41.  
  42. echo .
  43. echo Insert disk 5 and press any key to continue, or press Ctrl-C to stop.
  44. echo .
  45. pause
  46. xcopy disk5\*.* %1\
  47.  
  48. :Done
  49.